home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960209-19960425 / 000042_news@columbia.edu _Mon Feb 19 19:12:43 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id TAA07954 for <kermit.misc@watsun>; Mon, 19 Feb 1996 19:12:42 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id TAA17413 for kermit.misc@watsun; Mon, 19 Feb 1996 19:12:38 -0500 (EST)
  4. Path: news.columbia.edu!panix!imci5!pull-feed.internetmci.com!news.internetMCI.com!newsfeed.internetmci.com!howland.reston.ans.net!math.ohio-state.edu!magnus.acs.ohio-state.edu!csn!ub!newserve!usenet
  5. From: (Gerry Hecht)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Ckermit 191 as PPP Redialler
  8. Date: 19 Feb 1996 18:39:02 GMT
  9. Organization: Dept. of Psychology, Binghamton University
  10. Lines: 71
  11. Message-ID: <4gag46$t6u@bingnet1.cc.binghamton.edu>
  12. Reply-To: bb05285@binghamton.edu (Gerry Hecht)
  13. NNTP-Posting-Host: 128.226.21.52
  14. X-Newsreader: IBM NewsReader/2 v1.2
  15.  
  16. Hi all,
  17. A stubborn roadblock; I don't use the dial other provider object in OS/2 
  18. Warp; rather, I use a simple ppp.cmd file that looks like this:
  19.  
  20. cut here -------------------------------------------
  21.  
  22. route -fh
  23. ppp com2 57600 mru 1498 rtscts modem defaultroute priority 1 notify exit 
  24. user MYLOGID name MYLOGID secret MYPASSWD idle 15 connect "slattach ATH0 OK 
  25. ATZ OK AT&FM0 OK ATDTxxx-xxxx NNECT"
  26.  
  27. cut here -------------------------------------------------------
  28.  
  29. with the route -fh on the first line and EVERYTHING ELSE on the second 
  30. line (i.e no word wrap) and this works fine to get me into my PPP 
  31. connection. HOWEVER, it can't automatically redial... SO... I turned to 
  32. my trusty Ckermit to handle the ppp connection. My ckppp.cmd file looks 
  33. like this:
  34.  
  35. cut here ---------------------------------------------
  36.  
  37. /*   */
  38. 'route -fh'
  39. 'ppp com2 57600 mru 1498 rtscts modem defaultroute priority 1 connect 
  40. ckermit "c:\ckermit\ckppp.ini " '
  41.  
  42. cut here----------------------------------------------
  43. again with the route -fh on the second line after the comment and 
  44. everything else on the second line.
  45.  
  46. My ckppp.ini file looks like this:
  47.  
  48. cut here ----------------------------------------------
  49.  
  50. set exit warning off
  51. set input case ignore
  52. access ckppp
  53. if failure exit 1
  54. input 5 username
  55. if failure exit 1
  56. output bb05285\13
  57. input 5 secret
  58. if failure exit 1
  59. output mypasswd\13
  60. input 5 ppp
  61. if failure exit 1
  62. output ppp\13
  63. exit 0
  64.  
  65. cut here ----------------------------------------------
  66.  
  67. Finally I added the following line to my ckermit.ksd file:
  68.  
  69.     ckppp       nologin    xxxxx    call hayes pppcom2 57600 xxx-xxxx
  70.  
  71. Now the problem; upon using this it DOES redial after a busy signal 
  72. (GREAT!!) but when it connects it fails to negotiate the logon sequence 
  73. (PAP problem????) and I get disconnected. :(
  74.  
  75. Is there anyone who can help me understand the differences between the 
  76. way slattach handles the negotiation and the way ckermit's ppp handles 
  77. it. Again my standard ppp.cmd file works perfectly but doesn't redial, my 
  78. Ckermit redial configuration (replacing slattach with ckermit 
  79. c:\ckermit\ckppp.ini) redials but doesn't connect. Any help would be 
  80. greatly appreciated as the manuals as well as the online ckermit updates 
  81. haven't been able to solve this.
  82.  
  83. Thank you very much in advance,
  84.  
  85. Gerry Hecht
  86.